500 |
How can I add an extra button to a spin editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGrid1->PutDefaultItemHeight(20); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SpinType); var_Editor->AddButton("B1",long(2),long(1),"This is a bit of text that's shown when the cursor hovers the button B1",vtMissing,vtMissing); var_Editor->PutButtonWidth(20); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(0)); var_Items->AddItem(long(1)); |
499 |
How can I remove or delete the buttons in the editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->AddButton("B1",long(1),long(0),"This is a bit of text that's shown when the cursor hovers the button B1",vtMissing,vtMissing); var_Editor->AddButton("B3",long(2),long(1),"This is a bit of text that's shown when the cursor hovers the button B3",vtMissing,vtMissing); var_Editor->AddButton("B4",long(1),long(1),"This is a bit of text that's shown when the cursor hovers the button B4",vtMissing,vtMissing); var_Editor->RemoveButton("B1"); var_Editor->PutButtonWidth(20); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("Text 1"); var_Items->AddItem("Text 2"); |
498 |
How can I hide the buttons in the editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGrid1->PutDefaultItemHeight(24); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->AddButton("B1",long(1),long(0),"This is a bit of text that's shown when the cursor hovers the button B1",vtMissing,vtMissing); var_Editor->AddButton("B3",long(2),long(1),"This is a bit of text that's shown when the cursor hovers the button B3",vtMissing,vtMissing); var_Editor->AddButton("B4",long(1),long(1),"This is a bit of text that's shown when the cursor hovers the button B4",vtMissing,vtMissing); var_Editor->PutButtonWidth(0); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("Text 1"); var_Items->AddItem("Text 2"); |
497 |
How can I change the width of the buttons in the editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); spGrid1->PutDefaultItemHeight(24); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->AddButton("B1",long(1),long(0),"This is a bit of text that's shown when the cursor hovers the button B1",vtMissing,vtMissing); var_Editor->AddButton("B3",long(2),long(1),"This is a bit of text that's shown when the cursor hovers the button B3",vtMissing,vtMissing); var_Editor->AddButton("B4",long(1),long(1),"This is a bit of text that's shown when the cursor hovers the button B4",vtMissing,vtMissing); var_Editor->PutButtonWidth(24); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("Text 1"); var_Items->AddItem("Text 2"); |
496 |
How can I add extra buttons to an editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->AddButton("B1",long(1),long(0),"This is a bit of text that's shown when the cursor hovers the button B1",vtMissing,vtMissing); var_Editor->AddButton("B2",long(2),long(0),"This is a bit of text that's shown when the cursor hovers the button B2",vtMissing,vtMissing); var_Editor->AddButton("B3",long(3),long(1),"This is a bit of text that's shown when the cursor hovers the button B3",vtMissing,vtMissing); var_Editor->AddButton("B4",long(1),long(1),"This is a bit of text that's shown when the cursor hovers the button B4",vtMissing,vtMissing); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("Text 1"); var_Items->AddItem("Text 2"); |
495 |
is there any function to specify the number of rows / items being visible in a drop down list editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"First item",vtMissing); var_Editor->AddItem(2,L"Second item",vtMissing); var_Editor->AddItem(3,L"Third item",vtMissing); var_Editor->PutDropDownRows(1); var_Editor->PutPopupAppearance(EXGRIDLib::FlatApp); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
494 |
How can I change the border for a drop down editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutPopupAppearance(EXGRIDLib::FlatApp); spGrid1->GetItems()->AddItem("Today"); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->GetCellEditor(var_Items->AddItem("Today"),long(0))->PutEditType(EXGRIDLib::DateType); |
493 |
How can I remove a predefined item in a drop down editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Color")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ColorListType); var_Editor->PutOption(EXGRIDLib::exColorListShowName,VARIANT_TRUE); var_Editor->RemoveItem(255); spGrid1->GetItems()->AddItem(long(255)); spGrid1->GetItems()->AddItem(long(65280)); |
492 |
How can I remove or clear all predefined items in a drop down editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Color")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ColorListType); var_Editor->ClearItems(); var_Editor->AddItem(255,L"Red Color",vtMissing); spGrid1->GetItems()->AddItem(long(255)); |
491 |
How can I center the predefined items in a drop down editor editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"First item",vtMissing); var_Editor->AddItem(2,L"Second item",vtMissing); var_Editor->AddItem(3,L"Third item",vtMissing); var_Editor->PutDropDownAlignment(EXGRIDLib::CenterAlignment); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
490 |
How can I right align the items in a drop down editor editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"First item",vtMissing); var_Editor->AddItem(2,L"Second item",vtMissing); var_Editor->AddItem(3,L"Third item",vtMissing); var_Editor->PutDropDownAlignment(EXGRIDLib::RightAlignment); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
489 |
How can I specify the width of the drop down editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutDropDownAutoWidth(EXGRIDLib::exDropDownEditorWidth); var_Editor->PutDropDownMinWidth(385); var_Editor->PutEditType(EXGRIDLib::ColorListType); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(255)); var_Items->AddItem(long(65280)); |
488 |
How can hide the drop down button for an editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutDropDownVisible(VARIANT_FALSE); var_Editor->PutEditType(EXGRIDLib::ColorListType); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(255)); var_Items->AddItem(long(65280)); |
487 |
How can assign a tooltip to a drop down list editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"First item",vtMissing); var_Editor->AddItem(2,L"Second item",vtMissing); var_Editor->AddItem(3,L"Third item",vtMissing); var_Editor->PutItemToolTip(long(1),L"This is a tooltip that shows when user hovers the <b>first</b> item"); var_Editor->PutItemToolTip(long(2),L"This is a tooltip that shows when user hovers the <b>second</b> item"); var_Editor->PutItemToolTip(long(3),L"This is a tooltip that shows when user hovers the <b>third</b> item"); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
486 |
How can I lock, disable make read only an editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutLocked(VARIANT_TRUE); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"First item",vtMissing); var_Editor->AddItem(2,L"Second item",vtMissing); var_Editor->AddItem(3,L"Third item",vtMissing); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
485 |
How can I sort the items in a drop down list editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"Second item",vtMissing); var_Editor->AddItem(2,L"First item",vtMissing); var_Editor->AddItem(3,L"Third item",vtMissing); var_Editor->SortItems(VARIANT_TRUE,vtMissing); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
484 |
How can I expand an item in the tree or a hierarchy of a drop down editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXGRIDLib::IColumnPtr var_Column = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown"))); var_Column->PutDef(EXGRIDLib::exCellValueFormat,long(1)); EXGRIDLib::IEditorPtr var_Editor = var_Column->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->PutDropDownAutoWidth(EXGRIDLib::exDropDownEditorWidth); var_Editor->AddItem(1,L"<b>CObject</b> class",long(1)); var_Editor->InsertItem(2,L"<b>CCmdTarget</b> class",long(2),long(1)); var_Editor->InsertItem(3,L"<b>CWnd</b> class",long(3),long(2)); var_Editor->InsertItem(6,L"<bgcolor=10A0E0><fgcolor=F0F0F0>S y n c</fgcolor>",long(1),long(1)); var_Editor->AddItem(4,L"Exceptions",long(1)); var_Editor->InsertItem(7,L"<b>System</b> Exceptions",long(2),long(4)); var_Editor->AddItem(5,L"File Services",long(2)); var_Editor->PutExpandItem(long(1),VARIANT_TRUE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
483 |
How can I display a tree or a hierarchy in a drop down editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXGRIDLib::IColumnPtr var_Column = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown"))); var_Column->PutDef(EXGRIDLib::exCellValueFormat,long(1)); EXGRIDLib::IEditorPtr var_Editor = var_Column->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->PutDropDownAutoWidth(EXGRIDLib::exDropDownEditorWidth); var_Editor->AddItem(1,L"<b>CObject</b> class",long(1)); var_Editor->InsertItem(2,L"<b>CCmdTarget</b> class",long(2),long(1)); var_Editor->InsertItem(3,L"<b>CWnd</b> class",long(3),long(2)); var_Editor->InsertItem(6,L"<bgcolor=10A0E0><fgcolor=F0F0F0>S y n c</fgcolor>",long(1),long(1)); var_Editor->AddItem(4,L"Exceptions",long(1)); var_Editor->InsertItem(7,L"<b>System</b> Exceptions",long(2),long(4)); var_Editor->AddItem(5,L"File Services",long(2)); var_Editor->ExpandAll(); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
482 |
How can I look for items that includes the typed characters in a drop down list editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutOption(EXGRIDLib::exAutoSearch,long(1)); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"First item",vtMissing); var_Editor->AddItem(2,L"Second item",vtMissing); var_Editor->AddItem(3,L"Third item",vtMissing); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
481 |
How can I keep the selection background color while editor is visible
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutSelBackColor(RGB(255,0,0)); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutOption(EXGRIDLib::exKeepSelBackColor,VARIANT_TRUE); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"First item",vtMissing); var_Editor->AddItem(2,L"Second item",vtMissing); var_Editor->AddItem(3,L"Third item",vtMissing); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
480 |
How can I select from a drop down list the editor, when the user starts typing in the editor, while it is closed and focused
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutOption(EXGRIDLib::exAutoDropDownList,long(1)); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"First item",long(1)); var_Editor->AddItem(2,L"Second item",long(3)); var_Editor->AddItem(3,L"Third item",long(2)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
479 |
How can I automatically drop down the list editor, when the user starts typing in the editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutOption(EXGRIDLib::exAutoDropDownList,long(-1)); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"First item",long(1)); var_Editor->AddItem(2,L"Second item",long(3)); var_Editor->AddItem(3,L"Third item",long(2)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
478 |
How can I add a Font editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Font")))->GetEditor()->PutEditType(EXGRIDLib::FontType); spGrid1->GetItems()->AddItem("Tahoma"); |
477 |
How can I change the visual appearance for the buttons in the calculator editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::CalculatorType); var_Editor->PutOption(EXGRIDLib::exCalcPictureUp,((IDispatch*)(spGrid1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\colorize.gif`)")))); var_Editor->PutOption(EXGRIDLib::exCalcPictureDown,((IDispatch*)(spGrid1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\auction.gif`)")))); spGrid1->GetItems()->AddItem(long(10)); |
476 |
How can I customize the caption of buttons in the calculator editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::CalculatorType); var_Editor->PutOption(EXGRIDLib::exCalcButtons,"0;1;2;3;4;5;6;7;8;9;<b>+</b>;<fgcolor=FF0000>=</fgcolor>"); spGrid1->GetItems()->AddItem(long(10)); |
475 |
How can I customize the caption of buttons in the calculator editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::CalculatorType); var_Editor->PutOption(EXGRIDLib::exCalcButtons,"0;1;2;3;4;5;6;7;8;9"); spGrid1->GetItems()->AddItem(long(10)); |
474 |
How can I specify the width and height of the buttons in the calculator editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::CalculatorType); var_Editor->PutOption(EXGRIDLib::exCalcButtonWidth,long(32)); var_Editor->PutOption(EXGRIDLib::exCalcButtonHeight,long(32)); spGrid1->GetItems()->AddItem(long(10)); |
473 |
How can I change the "Cannot divide by zero" message that shows in the calculator editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::CalculatorType); var_Editor->PutOption(EXGRIDLib::exCalcCannotDivideByZero,"Divizion by zero"); spGrid1->GetItems()->AddItem(long(10)); |
472 |
How can I enable or disable executing operations while the calculator editor is focused and closed
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::CalculatorType); var_Editor->PutOption(EXGRIDLib::exCalcExecuteKeys,VARIANT_FALSE); spGrid1->GetItems()->AddItem(long(10)); |
471 |
How can I add a calculator editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor()->PutEditType(EXGRIDLib::CalculatorType); spGrid1->GetItems()->AddItem(long(10)); |
470 |
How can I edit a number between a range or interval
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SliderType); var_Editor->PutNumeric(EXGRIDLib::exInteger); var_Editor->PutOption(EXGRIDLib::exSpinStep,long(0)); var_Editor->PutOption(EXGRIDLib::exSliderWidth,long(0)); var_Editor->PutOption(EXGRIDLib::exSliderMin,long(5)); var_Editor->PutOption(EXGRIDLib::exSliderMax,long(15)); spGrid1->GetItems()->AddItem(long(10)); |
469 |
How can I hide or show the spin in the slider or track bar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SliderType); var_Editor->PutOption(EXGRIDLib::exSpinStep,long(0)); spGrid1->GetItems()->AddItem(long(10)); |
468 |
How can I add a slider or track bar editor, with a fixed size
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SliderType); var_Editor->PutOption(EXGRIDLib::exSliderWidth,long(64)); spGrid1->GetItems()->AddItem(long(10)); |
467 |
How can I add a slider or track bar editor, so it covers half of the cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SliderType); var_Editor->PutOption(EXGRIDLib::exSliderWidth,long(-50)); spGrid1->GetItems()->AddItem(long(10)); |
466 |
How can I add a slider or track bar editor, so it covers the full cell
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SliderType); var_Editor->PutOption(EXGRIDLib::exSliderWidth,long(-100)); spGrid1->GetItems()->AddItem(long(10)); |
465 |
How can I add a slider or track bar editor within a range or interval of numbers
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Spin from 5 to 15")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SliderType); var_Editor->PutNumeric(EXGRIDLib::exInteger); var_Editor->PutOption(EXGRIDLib::exSliderMin,long(5)); var_Editor->PutOption(EXGRIDLib::exSliderMax,long(15)); spGrid1->GetItems()->AddItem(long(10)); |
464 |
How can I add a slider or track bar editor within a range or interval of float numbers
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Spin from 5 to 15")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SliderType); var_Editor->PutNumeric(EXGRIDLib::exFloat); var_Editor->PutOption(EXGRIDLib::exSliderMin,long(0)); var_Editor->PutOption(EXGRIDLib::exSliderMax,long(1)); var_Editor->PutOption(EXGRIDLib::exSpinStep,"0.01"); var_Editor->PutOption(EXGRIDLib::exSliderStep,"0.01"); spGrid1->GetItems()->AddItem("0.3"); |
463 |
How can I add a spin editor within a range or interval of float numbers
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Spin from 5 to 15")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SliderType); var_Editor->PutNumeric(EXGRIDLib::exFloat); var_Editor->PutOption(EXGRIDLib::exSliderWidth,long(0)); var_Editor->PutOption(EXGRIDLib::exSliderMin,long(0)); var_Editor->PutOption(EXGRIDLib::exSliderMax,long(1)); var_Editor->PutOption(EXGRIDLib::exSpinStep,"0.01"); spGrid1->GetItems()->AddItem("0.3"); |
462 |
How can I add a spin editor within a range or interval of numbers
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Spin from 5 to 15")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SliderType); var_Editor->PutNumeric(EXGRIDLib::exInteger); var_Editor->PutOption(EXGRIDLib::exSliderWidth,long(0)); var_Editor->PutOption(EXGRIDLib::exSliderMin,long(5)); var_Editor->PutOption(EXGRIDLib::exSliderMax,long(15)); spGrid1->GetItems()->AddItem(long(10)); |
461 |
How can I add a slider or track bar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Slider")))->GetEditor()->PutEditType(EXGRIDLib::SliderType); spGrid1->GetItems()->AddItem(long(10)); |
460 |
I have check box column, but the check-boxes looks disabled. What can I do
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Check")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::CheckValueType); var_Editor->PutOption(EXGRIDLib::exCheckValue2,long(1)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(VARIANT_FALSE); var_Items->AddItem(VARIANT_TRUE); var_Items->AddItem(VARIANT_FALSE); |
459 |
How do I add check box column, so the cell value is changed as I click the cells
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutMarkSearchColumn(VARIANT_FALSE); EXGRIDLib::IColumnPtr var_Column = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"C"))); var_Column->PutWidth(18); var_Column->PutAllowSizing(VARIANT_FALSE); EXGRIDLib::IEditorPtr var_Editor = var_Column->GetEditor(); var_Editor->PutEditType(EXGRIDLib::CheckValueType); var_Editor->PutOption(EXGRIDLib::exCheckValue2,long(1)); spGrid1->GetColumns()->Add(L"Text"); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellValue(var_Items->AddItem(VARIANT_FALSE),long(1),"Check 1"); var_Items->PutCellValue(var_Items->AddItem(VARIANT_TRUE),long(1),"Check 2"); var_Items->PutCellValue(var_Items->AddItem(VARIANT_FALSE),long(1),"Check 3"); |
458 |
How do I add check box column, so the cell value is changed as I click the cells
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Check")))->GetEditor()->PutEditType(EXGRIDLib::CheckValueType); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(VARIANT_FALSE); var_Items->AddItem(VARIANT_TRUE); var_Items->AddItem(VARIANT_FALSE); |
457 |
How do I disable adding new lines using the ENTER key in a memo or a multiple lines edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MemoDropDownType); var_Editor->PutOption(EXGRIDLib::exMemoDropDownAcceptReturn,VARIANT_FALSE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellSingleLine(var_Items->AddItem(_bstr_t("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th") + "e line, and get it displayed on multiple lines."),long(0),EXGRIDLib::exCaptionWordWrap); |
456 |
How do I add a vertical scroll bar for a memo or a multiple lines edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MemoDropDownType); var_Editor->PutOption(EXGRIDLib::exMemoVScrollBar,VARIANT_TRUE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellSingleLine(var_Items->AddItem(_bstr_t("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th") + "e line, and get it displayed on multiple lines."),long(0),EXGRIDLib::exCaptionWordWrap); |
455 |
How do I add a horizontal scroll bar for a memo or a multiple lines edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MemoDropDownType); var_Editor->PutOption(EXGRIDLib::exMemoHScrollBar,VARIANT_TRUE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellSingleLine(var_Items->AddItem(_bstr_t("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th") + "e line, and get it displayed on multiple lines."),long(0),EXGRIDLib::exCaptionWordWrap); |
454 |
How can I specify the width or the height for a drop down memo or a multiple lines edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MemoDropDownType); var_Editor->PutOption(EXGRIDLib::exMemoDropDownWidth,long(256)); var_Editor->PutOption(EXGRIDLib::exMemoDropDownHeight,long(64)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellSingleLine(var_Items->AddItem("This is a long text that should break the line, and get it displayed on multiple lines."),long(0),EXGRIDLib::exCaptionWordWrap); |
453 |
How do I add a drop down memo or a multiple lines edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor()->PutEditType(EXGRIDLib::MemoDropDownType); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellSingleLine(var_Items->AddItem("This is a long text that should break the line, and get it displayed on multiple lines."),long(0),EXGRIDLib::exCaptionWordWrap); |
452 |
How do I add a color list editor with my own or custom colors
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Color")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ColorListType); var_Editor->PutOption(EXGRIDLib::exColorListShowName,VARIANT_TRUE); var_Editor->ClearItems(); var_Editor->AddItem(255,L"Red Color",vtMissing); var_Editor->AddItem(16711680,L"Blue Color",vtMissing); var_Editor->AddItem(65280,L"Green Color",vtMissing); spGrid1->GetItems()->AddItem(long(255)); |
451 |
How do I add a color list editor with my own or custom colors
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Color")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ColorListType); var_Editor->ClearItems(); var_Editor->AddItem(255,L"Red Color",vtMissing); var_Editor->AddItem(16711680,L"Blue Color",vtMissing); var_Editor->AddItem(65280,L"Green Color",vtMissing); spGrid1->GetItems()->AddItem(long(255)); |
450 |
How can I show the color's name in a color list editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Color")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ColorListType); var_Editor->PutOption(EXGRIDLib::exColorListShowName,VARIANT_TRUE); spGrid1->GetItems()->AddItem(long(255)); |
449 |
How do I add a color list editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Color")))->GetEditor()->PutEditType(EXGRIDLib::ColorListType); spGrid1->GetItems()->AddItem(long(255)); |
448 |
How can I access my own custom or ActiveX editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutDrawGridLines(EXGRIDLib::exAllLines); spGrid1->PutDefaultItemHeight(128); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::UserEditorType); var_Editor->UserEditor(L"MSCAL.Calendar",L""); /* Copy and paste the following directives to your header file as it defines the namespace 'MSACAL' for the library: 'Microsoft Calendar Control 2007' #import <MSCAL.OCX> */ MSACAL::ICalendarPtr var_Calendar = ((MSACAL::ICalendarPtr)(var_Editor->GetUserEditorObject())); var_Calendar->PutBackColor(RGB(255,255,255)); var_Calendar->PutGridCellEffect(0); var_Calendar->PutShowTitle(VARIANT_FALSE); var_Calendar->PutShowDateSelectors(VARIANT_FALSE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("MSCal.Calendar"); var_Items->AddItem("MSCal.Calendar"); |
447 |
How can I add my own custom or ActiveX editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutDrawGridLines(EXGRIDLib::exAllLines); spGrid1->PutDefaultItemHeight(128); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::UserEditorType); var_Editor->UserEditor(L"MSCAL.Calendar",L""); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("MSCal.Calendar"); var_Items->AddItem("MSCal.Calendar"); |
446 |
How can I add a hyperlink editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Shell.Execute")))->GetEditor()->PutEditType(EXGRIDLib::LinkEditType); spGrid1->GetItems()->AddItem("http://www.exontrol.com"); spGrid1->GetItems()->AddItem("c:\\"); |
445 |
How can I add a drop down editor, that allows only predefined values, but still being able to edit and select
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::PickEditType); var_Editor->AddItem(1,L"The first item",long(1)); var_Editor->AddItem(2,L"The second item",long(3)); var_Editor->AddItem(3,L"The third item",long(2)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("The first item"); var_Items->AddItem("The third item"); |
444 |
How can I show or hide the rectangle arround progress bar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutSelForeColor(RGB(0,0,0)); spGrid1->PutSelBackColor(RGB(128,255,255)); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Progress")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ProgressBarType); var_Editor->PutOption(EXGRIDLib::exProgressBarMarkTicker,VARIANT_FALSE); spGrid1->GetItems()->AddItem(long(33)); |
443 |
How can I hide the caption / percent in the progress bar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutSelForeColor(RGB(0,0,0)); spGrid1->PutSelBackColor(RGB(128,255,255)); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Progress")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ProgressBarType); var_Editor->PutOption(EXGRIDLib::exProgressBarAlignment,long(-1)); spGrid1->GetItems()->AddItem(long(33)); |
442 |
How can I align the caption in the center of the progress bar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutSelForeColor(RGB(0,0,0)); spGrid1->PutSelBackColor(RGB(128,255,255)); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Progress")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ProgressBarType); var_Editor->PutOption(EXGRIDLib::exProgressBarAlignment,long(1)); spGrid1->GetItems()->AddItem(long(33)); |
441 |
How can I align the caption to the right in the progress bar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutSelForeColor(RGB(0,0,0)); spGrid1->PutSelBackColor(RGB(128,255,255)); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Progress")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ProgressBarType); var_Editor->PutOption(EXGRIDLib::exProgressBarAlignment,long(2)); spGrid1->GetItems()->AddItem(long(33)); |
440 |
How can I change the background color for a progress bar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutSelForeColor(RGB(0,0,0)); spGrid1->PutSelBackColor(RGB(128,255,255)); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Progress")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ProgressBarType); var_Editor->PutOption(EXGRIDLib::exProgressBarBackColor,long(255)); spGrid1->GetItems()->AddItem(long(33)); |
439 |
How can I add a progress bar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutSelForeColor(RGB(0,0,0)); spGrid1->PutSelBackColor(RGB(128,255,255)); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Progress")))->GetEditor()->PutEditType(EXGRIDLib::ProgressBarType); spGrid1->GetItems()->AddItem(long(33)); |
438 |
How can I add a button editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Button")))->GetEditor()->PutEditType(EXGRIDLib::ButtonType); spGrid1->GetItems()->AddItem("Just a text"); |
437 |
How can I show or hide the type of the OLE Object for Photo or a Picture editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->PutColumnAutoResize(VARIANT_FALSE); EXGRIDLib::IColumnPtr var_Column = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Photo"))); var_Column->PutWidth(74); EXGRIDLib::IEditorPtr var_Editor = var_Column->GetEditor(); var_Editor->PutEditType(EXGRIDLib::PictureType); var_Editor->PutOption(EXGRIDLib::exShowPictureType,VARIANT_FALSE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); long h = var_Items->AddItem(vtMissing); var_Items->PutCellValue(h,long(0),((IDispatch*)(spGrid1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\sample.bmp`)")))); var_Items->PutItemHeight(h,64); |
436 |
How can I add a Photo or a Picture editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Photo")))->GetEditor()->PutEditType(EXGRIDLib::PictureType); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); long h = var_Items->AddItem(vtMissing); var_Items->PutCellValue(h,long(0),((IDispatch*)(spGrid1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\sample.bmp`)")))); var_Items->PutItemHeight(h,64); |
435 |
How can I hide or show the "System" page in the color editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Color")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ColorType); var_Editor->PutOption(EXGRIDLib::exColorShowSystem,VARIANT_FALSE); spGrid1->GetItems()->AddItem(long(255)); |
434 |
How can I hide or show the "Palette" page in the color editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Color")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::ColorType); var_Editor->PutOption(EXGRIDLib::exColorShowPalette,VARIANT_FALSE); spGrid1->GetItems()->AddItem(long(255)); |
433 |
How do I add a color editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Color")))->GetEditor()->PutEditType(EXGRIDLib::ColorType); spGrid1->GetItems()->AddItem(long(255)); |
432 |
How do I change the masking character
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Mask")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MaskType); var_Editor->PutMask(L"###"); var_Editor->PutMaskChar(48); spGrid1->GetItems()->AddItem(""); |
431 |
How do I mask an IP
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"IP")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MaskType); var_Editor->PutMask(L"{0,255}\\.{0,255}\\.{0,255}\\.{0,255}"); spGrid1->GetItems()->AddItem("1.2.3.4"); |
430 |
How do I add a mask editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Mask")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MaskType); var_Editor->PutMask(L"{0,255}\\.{0,255}\\.{0,255}\\.{0,255}"); spGrid1->GetItems()->AddItem("1.2.3.4"); |
429 |
How to show or hide the week numbers header in a drop down date picker calendar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutOption(EXGRIDLib::exDateWeeksHeader,VARIANT_TRUE); spGrid1->GetItems()->AddItem("Today"); |
428 |
How do I show or hide the bottom scroll bar in the drop down date picker calendar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutOption(EXGRIDLib::exDateShowScroll,VARIANT_FALSE); spGrid1->GetItems()->AddItem("Today"); |
427 |
How do highlight the "Today" date is the drop down date picker calendar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutOption(EXGRIDLib::exDateMarkToday,VARIANT_TRUE); spGrid1->GetItems()->AddItem("Today"); |
426 |
How do I show or hide the "Today" button is the drop down date picker calendar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutOption(EXGRIDLib::exDateShowTodayButton,VARIANT_FALSE); spGrid1->GetItems()->AddItem("Today"); |
425 |
How to specify the first day of the week in the drop down date picker calendar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutOption(EXGRIDLib::exDateFirstWeekDay,long(1)); spGrid1->GetItems()->AddItem("Today"); |
424 |
How to specifies the shortcut for the weekdays to be displayed in the drop down date picker calendar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutOption(EXGRIDLib::exDateWeekDays,"Du Lu Ma Mi Jo Vi Si"); spGrid1->GetItems()->AddItem("Today"); |
423 |
How can I change the name of the months in the drop down date picker calendar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutOption(EXGRIDLib::exDateMonths,"Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre Décembre"); spGrid1->GetItems()->AddItem("Today"); |
422 |
Can I change the "Today" caption being displayed in the drop down date picker calendar editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutOption(EXGRIDLib::exDateTodayCaption,"Azi"); spGrid1->GetItems()->AddItem("Today"); |
421 |
How can allow empty date to drop down date picker control or a calendar control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DateType); var_Editor->PutOption(EXGRIDLib::exDateAllowNullDate,VARIANT_TRUE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("Today"); var_Items->AddItem(""); var_Items->AddItem("Today"); |
420 |
How can I a drop down date picker control or a calendar control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Date")))->GetEditor()->PutEditType(EXGRIDLib::DateType); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("Today"); |
419 |
How can I have an OR combination of my bit values, something like a check-box list editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IColumnPtr var_Column = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"CkeckList"))); var_Column->PutDef(EXGRIDLib::exCellValueFormat,long(1)); EXGRIDLib::IEditorPtr var_Editor = var_Column->GetEditor(); var_Editor->PutEditType(EXGRIDLib::CheckListType); var_Editor->AddItem(1,L"Bit <b>1</b>",vtMissing); var_Editor->AddItem(2,L"Bit <b>2</b>",vtMissing); var_Editor->AddItem(4,L"Bit <b>3</b>",vtMissing); var_Editor->AddItem(8,L"Bit <b>4</b>",vtMissing); var_Editor->AddItem(16,L"Bit <b>5</b>",vtMissing); var_Editor->AddItem(32,L"Bit <b>6</b>",vtMissing); var_Editor->AddItem(64,L"Bit <b>7</b>",vtMissing); var_Editor->AddItem(128,L"Bit <b>8</b>",vtMissing); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(112)); var_Items->AddItem(long(2)); |
418 |
How do I stop resizing the memo or a multiple lines edit control, while the user types
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MemoType); var_Editor->PutOption(EXGRIDLib::exMemoAutoSize,VARIANT_FALSE); var_Editor->PutOption(EXGRIDLib::exMemoHScrollBar,VARIANT_TRUE); var_Editor->PutOption(EXGRIDLib::exMemoVScrollBar,VARIANT_TRUE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellSingleLine(var_Items->AddItem(_bstr_t("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th") + "e line, and get it displayed on multiple lines."),long(0),EXGRIDLib::exCaptionWordWrap); |
417 |
How do I add a horizontal scroll bar for a memo or a multiple lines edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MemoType); var_Editor->PutOption(EXGRIDLib::exMemoHScrollBar,VARIANT_TRUE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellSingleLine(var_Items->AddItem(_bstr_t("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th") + "e line, and get it displayed on multiple lines."),long(0),EXGRIDLib::exCaptionWordWrap); |
416 |
How do I add a vertical scroll bar for a memo or a multiple lines edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::MemoType); var_Editor->PutOption(EXGRIDLib::exMemoVScrollBar,VARIANT_TRUE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellSingleLine(var_Items->AddItem(_bstr_t("This is a long text that should break the line, and get it displayed on multiple lines.This is a long text that should break th") + "e line, and get it displayed on multiple lines."),long(0),EXGRIDLib::exCaptionWordWrap); |
415 |
How do I add a memo or a multiple lines edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor()->PutEditType(EXGRIDLib::MemoType); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->PutCellSingleLine(var_Items->AddItem("This is a long text that should break the line, and get it displayed on multiple lines."),long(0),EXGRIDLib::exCaptionWordWrap); |
414 |
How to specify the proposed change when the user clicks a spin control.
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SpinType); var_Editor->PutNumeric(EXGRIDLib::exInteger); var_Editor->PutOption(EXGRIDLib::exSpinStep,long(10)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(0)); var_Items->AddItem(long(10)); var_Items->AddItem(long(20)); |
413 |
How do I add a spin editor that allows only integer values
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::SpinType); var_Editor->PutNumeric(EXGRIDLib::exInteger); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(0)); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
412 |
How do I add a spin editor
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor()->PutEditType(EXGRIDLib::SpinType); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(0)); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
411 |
How do I specify in a drop down list editor, that I do not want to have predefined icon
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"The first item",long(1)); var_Editor->AddItem(2,L"The second item",long(3)); var_Editor->AddItem(3,L"The third item",long(2)); var_Editor->PutOption(EXGRIDLib::exDropDownImage,VARIANT_FALSE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
410 |
How do I add a drop down editor, that allows only predefined values
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->Images(_bstr_t("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"DropDown")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::DropDownListType); var_Editor->AddItem(1,L"The first item",long(1)); var_Editor->AddItem(2,L"The second item",long(3)); var_Editor->AddItem(3,L"The third item",long(2)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
409 |
How to allow the editor to work on insert or overtype mode
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->PutOption(EXGRIDLib::exEditAllowOverType,VARIANT_TRUE); var_Editor->PutOption(EXGRIDLib::exEditOverType,VARIANT_TRUE); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("000"); var_Items->AddItem("111"); var_Items->AddItem("222"); |
408 |
How to set foreground color for a locked, or read only edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->PutLocked(VARIANT_TRUE); var_Editor->PutOption(EXGRIDLib::exEditLockedForeColor,long(8421504)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("000"); var_Items->AddItem("111"); var_Items->AddItem("222"); |
407 |
How to set background color for a locked, or read only edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->PutLocked(VARIANT_TRUE); var_Editor->PutOption(EXGRIDLib::exEditLockedBackColor,long(8421504)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("000"); var_Items->AddItem("111"); var_Items->AddItem("222"); |
406 |
How to set the number of characters selected, when an EditType editor is opened
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->PutOption(EXGRIDLib::exEditSelLength,long(1)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("000"); var_Items->AddItem("111"); var_Items->AddItem("222"); |
405 |
How to set the starting point of text selected, when an EditType editor is opened
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->PutOption(EXGRIDLib::exEditSelStart,long(1)); var_Editor->PutOption(EXGRIDLib::exEditSelLength,long(1)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem("000"); var_Items->AddItem("111"); var_Items->AddItem("222"); |
404 |
How to specifiy the symbol that indicates the decimal values while editing a floating point number
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); spGrid1->BeginUpdate(); EXGRIDLib::IColumnPtr var_Column = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Float"))); var_Column->PutFormatColumn(L"len(value) ? (round(value) = value ? value : value format `|,|0`) : ``"); EXGRIDLib::IEditorPtr var_Editor = var_Column->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->PutNumeric(EXGRIDLib::exFloatInteger); var_Editor->PutOption(EXGRIDLib::exEditDecimalSymbol,long(44)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(double(0.12)); var_Items->AddItem(long(1)); var_Items->AddItem(double(2.45)); spGrid1->EndUpdate(); |
403 |
How can I edit a float number
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->PutNumeric(EXGRIDLib::exFloat); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(0)); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
402 |
How can I edit a number
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->PutNumeric(EXGRIDLib::exInteger); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(0)); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |
401 |
How do I limit the length of the text that the user may enter into an edit control
/* Copy and paste the following directives to your header file as it defines the namespace 'EXGRIDLib' for the library: 'ExGrid 1.0 Control Library' #import <ExGrid.dll> using namespace EXGRIDLib; */ EXGRIDLib::IGridPtr spGrid1 = GetDlgItem(IDC_GRID1)->GetControlUnknown(); EXGRIDLib::IEditorPtr var_Editor = ((EXGRIDLib::IColumnPtr)(spGrid1->GetColumns()->Add(L"Edit")))->GetEditor(); var_Editor->PutEditType(EXGRIDLib::EditType); var_Editor->PutOption(EXGRIDLib::exEditLimitText,long(1)); EXGRIDLib::IItemsPtr var_Items = spGrid1->GetItems(); var_Items->AddItem(long(0)); var_Items->AddItem(long(1)); var_Items->AddItem(long(2)); |